home *** CD-ROM | disk | FTP | other *** search
/ Aminet 28 / Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso / Aminet / dev / lang / fpc09905c.lha / fpc / hello.pp < prev    next >
Text File  |  1998-09-21  |  134b  |  8 lines

  1. Program Hello;
  2.  
  3. { Enable stack checking on the Amiga, unless you know what you are doing! }
  4. {$S+}
  5. Begin
  6.  WriteLn('Hello world');
  7. end.
  8.